From ee30721d8bc5b157100feeb3a5c64c1f14c23ef3 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 19 Jul 2007 15:49:25 +0000 Subject: [PATCH] rename checkboxMouseupHandler to checkboxClickHandler for the feel-good value of non-confusing names :D --- skins/common/wikibits.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skins/common/wikibits.js b/skins/common/wikibits.js index ee8c493145..af3ffc6326 100644 --- a/skins/common/wikibits.js +++ b/skins/common/wikibits.js @@ -728,7 +728,7 @@ function addCheckboxClickHandlers(inputs, start) { var end = checkboxes.length; checkboxes[end] = cb; cb.index = end; - cb.onclick = checkboxMouseupHandler; + cb.onclick = checkboxClickHandler; } if ( finish < inputs.length ) { @@ -738,7 +738,7 @@ function addCheckboxClickHandlers(inputs, start) { } } -function checkboxMouseupHandler(e) { +function checkboxClickHandler(e) { if (typeof e == 'undefined') { e = window.event; } -- 2.20.1